home *** CD-ROM | disk | FTP | other *** search
- module oCachePlugin is cPlugin
- has
- release Editor:
- GetIO()
- do
- result := oIOCachePlugin;
- end;
- end;
- end;
-
- release Editor:
-
- object oIOCacheLabel is "Cache";
-
- object oIOCachePlugin is cIOPlugin
- with
- AboutDialog is cUIAboutPluginDialog
- with
- HelpURL is "Cache/index.htm";
- Label is oIOCacheLabel;
- Text is "Cache element, events and commands.";
- end;
- ToolLines is [
- cIOToolListLine
- with
- Expanded is true;
- Label is oIOCacheLabel;
- Lines is [
- cIOToolLine
- with
- Words is [
- oCacheLoaderCreator
- ];
- end
- ];
- end
- ];
- ElementLines is [
- cIOSeedListLine
- with
- Label is oIOCacheLabel;
- Lines is [
- cIOSeedLine with IO is oIOCacheLoader; end
- ];
- end
- ];
- EventLines is [
- cIOSeedListLine
- with
- Label is oIOCacheLabel;
- Lines is [
- cIOSeedLine with IO is oIOCacheUpdatedEvent; end,
- cIOSeedLine with IO is oIOCacheUpdatingEvent; end
- ];
- end
- ];
- CommandLines is [
- cIOSeedListLine
- with
- Label is oIOCacheLabel;
- Lines is [
- cIOSeedLine with IO is oIOCreateCacheCommand; end,
- cIOSeedLine with IO is oIODeleteCacheCommand; end,
- cIOSeedLine with IO is oIOPurgeCacheCommand; end,
- cIOSeedLine with IO is oIOUpdateCacheCommand; end
- ];
- end
- ];
- end;
-
- end;
-